home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / multlang.zip / MSTRLST.DFM / MSTRLST.txt
Text File  |  1996-06-10  |  3KB  |  115 lines

  1. object StrListDlg: TStrListDlg
  2.   Left = 310
  3.   Top = 204
  4.   Width = 383
  5.   Height = 256
  6.   Caption = 'String lists'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = [fsBold]
  11.   FormStyle = fsMDIChild
  12.   Position = poScreenCenter
  13.   Visible = True
  14.   OnClose = FormClose
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 4
  19.     Top = 4
  20.     Width = 361
  21.     Height = 93
  22.     Alignment = taCenter
  23.     AutoSize = False
  24.     Caption = 
  25.       'The TStrings object is supported which is used by for example th' +
  26.       'e List and Combo boxes. It is possible to translate individual i' +
  27.       'tems as well as the whole list. Please switch language to see ho' +
  28.       'w the lists is updated below.'
  29.     Font.Color = clBlack
  30.     Font.Height = -13
  31.     Font.Name = 'Arial'
  32.     Font.Style = [fsBold]
  33.     ParentFont = False
  34.   end
  35.   object Label2: TLabel
  36.     Left = 184
  37.     Top = 112
  38.     Width = 153
  39.     Height = 45
  40.     Alignment = taCenter
  41.     AutoSize = False
  42.     Caption = 'Right click here to show the Popup Menu list'
  43.     PopupMenu = PopupMenu1
  44.   end
  45.   object ListBox1: TListBox
  46.     Left = 12
  47.     Top = 148
  48.     Width = 141
  49.     Height = 69
  50.     Color = clBtnFace
  51.     ItemHeight = 13
  52.     Items.Strings = (
  53.       'Apples'
  54.       'Orange Juice'
  55.       'Lingon berry'
  56.       'Wild strawberries')
  57.     TabOrder = 0
  58.   end
  59.   object ComboBox1: TComboBox
  60.     Left = 12
  61.     Top = 112
  62.     Width = 141
  63.     Height = 21
  64.     Style = csDropDownList
  65.     Color = clBtnFace
  66.     ItemHeight = 13
  67.     Items.Strings = (
  68.       'Apples'
  69.       'Orange Juice'
  70.       'Lingon berry'
  71.       'Wild strawberries')
  72.     TabOrder = 1
  73.   end
  74.   object MultLang1: TMultLang
  75.     Left = 332
  76.     Top = 72
  77.     Width = 33
  78.     Height = 22
  79.     AlignIcon = alLeft
  80.     AlignText = alLeft
  81.     IconMargin = 1
  82.     ItemHeight = 16
  83.     Items.Strings = (
  84.       'English'
  85.       'Swedish')
  86.     ShowIcons = False
  87.     Text = 'English'
  88.     ResizeIcon = False
  89.     TextMargin = 5
  90.     DefaultLanguage = 'English'
  91.     LanguageFile = '%EXEPath%Mdiapp.lan'
  92.     LanguagesData = {}
  93.   end
  94.   object PopupMenu1: TPopupMenu
  95.     Left = 184
  96.     Top = 140
  97.     object Apples1: TMenuItem
  98.       Caption = 'Apples'
  99.       ShortCut = 0
  100.     end
  101.     object OrangeJuice1: TMenuItem
  102.       Caption = 'Orange Juice'
  103.       ShortCut = 0
  104.     end
  105.     object Lingonberry1: TMenuItem
  106.       Caption = 'Lingon berry'
  107.       ShortCut = 0
  108.     end
  109.     object Wildstrawberries1: TMenuItem
  110.       Caption = 'Wild strawberries'
  111.       ShortCut = 0
  112.     end
  113.   end
  114. end
  115.